home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
program
/
ccdl150l.zip
/
IO
/
CLEARERR.C
next >
Wrap
C/C++ Source or Header
|
1996-06-24
|
126b
|
7 lines
#include <stdio.h>
void clearerr(FILE *stream)
{
if (stream->token == FILTOK)
stream->flags &= ~(_F_ERR | _F_EOF);
}